home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 016 / 26time11.arc / EQUATES.ASM < prev    next >
Encoding:
Assembly Source File  |  1986-11-25  |  675 b   |  21 lines

  1. public    timer, port_b, bell, bksp, cr, lf, ff, msdos, screen, zero
  2. public    time_of_day, terminate_stay_resident
  3.  
  4.  
  5.  
  6.  
  7.  
  8. TIMER    EQU    040h    ; Used by BEEP routine
  9. PORT_B    EQU    061h    ; Used by BEEP routine
  10. BELL    EQU    07h     ; Bell character for screen
  11. BKSP    EQU    08h     ; Backspace character for screen
  12. CR    EQU    0Dh     ; Carriage return char for printer
  13. LF    EQU    0Ah     ; Line feed char for printer
  14. FF    EQU    0Ch     ; Form feed char for printer
  15. MSDOS    EQU    021h    ; DOS software interrupt
  16. SCREEN    EQU    010h    ; BIOS Screen interrupt
  17. ZERO    EQU    0    ; Looks nice in the debugger
  18. TIME_OF_DAY EQU    01Ah    ; BIOS time of day interrupt
  19. TERMINATE_STAY_RESIDENT EQU 027h  ; DOS terminate and stay resident int.
  20.  
  21.